home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 July / CHIP Turkiye Temmuz 2000.iso / prog / share / 27 / data.z / ISPROTO.INF < prev    next >
Windows Setup INFormation  |  2000-01-03  |  3KB  |  85 lines

  1. ;-------------------------------------------------------------------------
  2. ; ISPROTO.INF -- Intellimax Network Service Windows 2000 Driver
  3. ;
  4. ; Copyright (c) 1997-1999, Intellimax Systems, Inc.
  5. ;-------------------------------------------------------------------------
  6. [version]
  7. Signature   = "$Windows NT$"
  8. Class       = NetTrans
  9. ClassGUID   = {4d36e975-e325-11ce-bfc1-08002be10318}
  10. Provider    = %Msft%
  11. DriverVer   = 07/01/1999,5.00.00
  12.  
  13. [Manufacturer]
  14. %Msft%=MSFT
  15.  
  16. [MSFT]
  17. %ISPROTO_Desc%=Install, MS_ISPROTO
  18.  
  19. ;-------------------------------------------------------------------------
  20. ; Installation Section
  21. ;-------------------------------------------------------------------------
  22. [Install]
  23. AddReg=Inst_Ndi
  24. Characteristics=0 ; Has no characterstic
  25. CopyFiles=CpyFiles_Sys
  26.  
  27. ;-------------------------------------------------------------------------
  28. ; Ndi installation support
  29. ;-------------------------------------------------------------------------
  30. [Inst_Ndi]
  31. HKR,Ndi,Service,,"IsProto"
  32. HKR,Ndi,HelpText,,%ISPROTO_HelpText%
  33. HKR, Ndi\Interfaces, UpperRange,, noupper
  34. HKR,"Ndi\Interfaces","LowerRange",,"ndis5,ndis4,ndiswanbh,ndisatm"
  35.  
  36. ;-------------------------------------------------------------------------
  37. ; Service installation support
  38. ;-------------------------------------------------------------------------
  39. [Install.Services]
  40. AddService=IsProto,,ISPROTO_Service_Inst
  41.  
  42. [IsProto_Service_Inst]
  43. DisplayName     = %ISPROTO_Desc%
  44. ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
  45. StartType       = 2 ;SERVICE_AUTO_START
  46. ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
  47. ServiceBinary   = %12%\isproto2.sys
  48. LoadOrderGroup  = "PNP_TDI"
  49. AddReg          = AddReg_ISPROTO_Service_Inst
  50. Description     = %ISPROTO_Desc%
  51.  
  52. [AddReg_ISPROTO_Service_Inst]
  53. HKLM,"System\CurrentControlSet\Services\IsProto","TextModeFlags",%REG_DWORD%,0x0001
  54. HKR,"Parameters","Company",,"Intellimax Systems, Inc."
  55.  
  56. ;-------------------------------------------------------------------------
  57. ; Support for removal of static registry settings
  58. ;-------------------------------------------------------------------------
  59. [Install.Remove]
  60. DelReg=Del_Static_Reg
  61.  
  62. [Install.Remove.Services]
  63. DelService=IsProto
  64.  
  65. [Del_Static_Reg]
  66. HKLM,"System\CurrentControlSet\Services\IsProto","TextModeFlags"
  67.  
  68. ;-------------------------------------------------------------------------
  69. ; Declare Destination Directories for file copy/deletion
  70. ;-------------------------------------------------------------------------
  71. [DestinationDirs]
  72. CpyFiles_Sys    = 12    ; DIRID_DRIVERS
  73.  
  74. ;-------------------------------------------------------------------------
  75. ; Files to Copy/Delete - Referenced by Install and Remove sections above
  76. ;-------------------------------------------------------------------------
  77. [CpyFiles_Sys]
  78. isproto2.sys,,,2
  79.  
  80. [Strings]
  81. Msft = "Intellimax"
  82. ISPROTO_Desc = "Intellimax Network Service"
  83. ISPROTO_HelpText = "Provides network service to Intellimax applications."
  84. REG_DWORD = 0x10001
  85.